home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / var / lib / dpkg / info / netbase.postrm < prev    next >
Encoding:
Text File  |  2007-03-30  |  463 b   |  27 lines

  1. #!/bin/sh -e
  2.  
  3. case "$1" in
  4.     remove)
  5.     ;;
  6.  
  7.     purge)
  8.     update-rc.d networking remove > /dev/null
  9.     ;;
  10.  
  11.     upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
  12.     ;;
  13.  
  14.     *)
  15.     echo "postrm called with unknown argument '$1'" >&2
  16.     exit 1
  17.     ;;
  18. esac
  19.  
  20. # Automatically added by dh_installdebconf
  21. if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
  22.     . /usr/share/debconf/confmodule
  23.     db_purge
  24. fi
  25. # End automatically added section
  26.  
  27.